Descriptions support markdown
def find_it(s):
c = s in 'The Truck missed the car with roses and ran into an Elephant.'
return c
Function Call | Return Value | |||
---|---|---|---|---|
find_it('Car') | → | |||
find_it('Truck') | → | |||
find_it('55684') | → | |||
find_it('Elephant') | → | |||
find_it('Roses') | → |
Experiment with this code on Gitpod.io